home *** CD-ROM | disk | FTP | other *** search
/ X'Tasies 5 / X'Tasies 5 - Disc 1.iso / mac / Photo.Dir / 00013_AutoButtonShape.ls < prev    next >
Encoding:
Text File  |  1996-09-02  |  225 b   |  14 lines

  1. global auto_flg
  2.  
  3. on mouseUp
  4.   if auto_flg = 1 then
  5.     set the visible of sprite 5 to 1
  6.     updateStage()
  7.     set auto_flg to 0
  8.   else
  9.     set the visible of sprite 5 to 0
  10.     updateStage()
  11.     set auto_flg to 1
  12.   end if
  13. end
  14.